home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Tools & Goodies / ODFx / Sources / Binding.k next >
Encoding:
Text File  |  1996-08-26  |  929 b   |  35 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef BINDING_K
  11. #define BINDING_K
  12.  
  13. // Kind
  14. #define kODFxKind "+//ISO 9070/ANSI::113722::US::CI LABS::AppleComputer:Kind:ODFx"
  15.  
  16. // Class ID
  17. #define kODFxEditor "AppleComputer::ODFx"
  18.  
  19. // Editor User String
  20. #define kODFxEditorUserString "ODFx R2"
  21.  
  22. // ODFx OSType
  23. #define kODFxOSType 'DFPH'
  24.  
  25. // NMAP constants
  26. #define kKindCategoryMapID            128
  27. #define kEditorKindMapID            kKindCategoryMapID+1
  28. #define kEditorUserStringMapID        kEditorKindMapID+1
  29. #define kKindUserStringMapID        kEditorUserStringMapID+1
  30. #define kOldMacOSTypeMapID            kKindUserStringMapID+1
  31. #define kEditorPlatformKinds        kOldMacOSTypeMapID + 1
  32.  
  33. #endif
  34.  
  35.